HTMLify
indexsamp.html
Views: 394 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <html> <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div><h1>TEMPERATURE CONVERTER</h1></div> <div> <div> <div style="float:left"> <div><h1><label>Fahrenheit</label></h1></div> <div><input type="number" id="fahrenheit"> </div> </div> <div style="float:left"> <img src="https://cdn-icons-png.flaticon.com/512/5105/5105291.png" alt="image" height="200px"> </div> </div> <div> <div style="float:left"> <div><h1><label>Celsius</label></h1></div> <div><input type="number" id="celsius"> </div> </div> <div style="float:left"> <img src="https://cdn-icons-png.flaticon.com/512/578/578113.png" alt="image" height="200px"> </div> </div> <div> <div style="float:left"> <div><h1><label>Kelvin</label></h1></div> <div><input type="number" id="kelvin"> </div> </div> <div style="float:left"> <img src="https://cdn-icons-png.flaticon.com/512/4958/4958677.png" alt="image" height="200px"> </div> </div> </div> <script src="script.js"></script> </body> </html> |